docs: Fix ostree.version -> version
authorColin Walters <walters@verbum.org>
Fri, 23 Dec 2016 14:59:30 +0000 (09:59 -0500)
committerAtomic Bot <atomic-devel@projectatomic.io>
Fri, 23 Dec 2016 15:24:56 +0000 (15:24 +0000)
I think originally I had envisioned this as `ostree.version`, but at the last
minute we changed it to just `version`. That's what all of the code uses, so
let's fix the docs.

Closes: #638
Approved by: paulvt

docs/manual/repository-management.md

index 5688a5829ca6e951847fc0a6791f87ea772ea6cd..64b2f6e1b2d9fd662541c42f4f4e57a241337f1e 100644 (file)
@@ -154,7 +154,7 @@ and generate a new commit in our prod repository:
 checksum=$(ostree --repo=repo-dev rev-parse exampleos/x86_64/stage-3-pass/standard`)
 ostree --repo=repo-prod pull-local repo-dev ${checksum}
 ostree --repo=repo-prod commit -b exampleos/x86_64/standard \
-       -s 'Release 1.2.3' --add-metadata-string=ostree.version=1.2.3 \
+       -s 'Release 1.2.3' --add-metadata-string=version=1.2.3 \
           --tree=ref=${checksum}
 ```
 
@@ -171,7 +171,7 @@ links to avoid copying any content at all - making the process very
 fast.
 
 Another interesting thing to notice here is that we're adding an
-`ostree.version` metadata string to the commit.  This is an optional
+`version` metadata string to the commit.  This is an optional
 piece of metadata, but we are encouraging its use in the OSTree
 ecosystem of tools.  Commands like `ostree admin status` show it by
 default.